home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / dhcp3 / dhclient-enter-hooks.d / avahi-autoipd next >
Text File  |  2009-10-18  |  1KB  |  34 lines

  1. #!/bin/sh
  2.  
  3. # $Id$
  4. #
  5. # This file is part of avahi.
  6. # avahi is free software; you can redistribute it and/or modify it
  7. # under the terms of the GNU Lesser General Public License as
  8. # published by the Free Software Foundation; either version 2 of the
  9. # License, or (at your option) any later version.
  10. #
  11. # avahi is distributed in the hope that it will be useful, but WITHOUT
  12. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  13. # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
  14. # License for more details.
  15. #
  16. # You should have received a copy of the GNU Lesser General Public
  17. # License along with avahi; if not, write to the Free Software
  18. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  19. # USA.
  20.  
  21. case "$reason" in
  22.     MEDIUM|ARPCHECK|ARPSEND|NBI)
  23.         ;;
  24.  
  25.     PREINIT|BOUND|RENEW|REBIND|REBOOT|STOP|RELEASE)
  26.         /usr/sbin/avahi-autoipd -k $interface 2> /dev/null
  27.         ;;
  28.     
  29.     EXPIRE|FAIL|TIMEOUT)
  30.         # Starting avahi-autoipd is left for the exit hook
  31.         ;;
  32. esac
  33.